home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Leisure Game Pak 1
/
Leisure Game Pak I.iso
/
lpgame1
/
85
/
tilearch.bat
< prev
next >
Wrap
DOS Batch File
|
1994-08-17
|
362b
|
24 lines
@echo off
rem %1 = complete name of file; %2 = archive type; %3 = specific tile set name
if %2 == .ZIP goto zip
if %2 == .LZH goto lha
if %2 == .ARJ goto arj
if %2 == .PAK goto pak
echo.
echo Unknown archive type %2
echo.
pause
goto end
:zip
pkunzip %1 %3
goto end
:lha
lha x %1 %3
goto end
:arj
arj e %1 %3
goto end
:pak
pak e %1 %3
:end